home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / bin / DXUtils / AppWizard / DXAppwiz.awx / TEMPLATE / D3DRES.H < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-25  |  1.4 KB  |  31 lines

  1. //-----------------------------------------------------------------------------
  2. // File: D3DRes.h
  3. //
  4. // Desc: Resource definitions required by the CD3DApplication class.
  5. //       Any application using the CD3DApplication class must include resources
  6. //       with the following identifiers.
  7. //-----------------------------------------------------------------------------
  8. #ifndef D3DRES_H
  9. #define D3DRES_H
  10.  
  11.  
  12. #define IDI_MAIN_ICON          101 // Application icon
  13. #define IDR_MAIN_ACCEL         113 // Keyboard accelerator
  14. #define IDR_MENU               141 // Application menu
  15. #define IDR_POPUP              142 // Popup menu
  16. #define IDD_SELECTDEVICE       144 // "Change Device" dialog box
  17.  
  18. #define IDC_ADAPTER_COMBO         1002 // Adapter combobox for "SelectDevice" dlg
  19. #define IDC_DEVICE_COMBO          1000 // Device combobox for "SelectDevice" dlg
  20. #define IDC_FULLSCREENMODES_COMBO 1003 // Mode combobox for "SelectDevice" dlg
  21. #define IDC_MULTISAMPLE_COMBO     1005 // MultiSample combobox for "SelectDevice" dlg
  22. #define IDC_WINDOW                1016 // Radio button for windowed-mode
  23. #define IDC_FULLSCREEN            1018 // Radio button for fullscreen-mode
  24.  
  25. #define IDM_CHANGEDEVICE     40002 // Command to invoke "Change Device" dlg
  26. #define IDM_TOGGLEFULLSCREEN 40003 // Command to toggle fullscreen mode
  27. #define IDM_EXIT             40006 // Command to exit the application
  28.  
  29.  
  30. #endif // D3DRES_H
  31.